runtime._defer.link (field)
27 uses
runtime (current package)
heapdump.go#L379: for d := gp._defer; d != nil; d = d.link {
heapdump.go#L393: dumpint(uint64(uintptr(unsafe.Pointer(d.link))))
mgc.go#L1826: dlink = d.link
mgc.go#L1827: d.link = nil
mgcmark.go#L895: for d := gp._defer; d != nil; d = d.link {
mgcmark.go#L901: if d.link != nil {
mgcmark.go#L904: scanblock(uintptr(unsafe.Pointer(&d.link)), goarch.PtrSize, &oneptrmask[0], gcw, &state)
panic.go#L280: d.link = gp._defer
panic.go#L400: d.link = gp._defer
panic.go#L430: d1.link = head.Load()
panic.go#L431: if d1.link == badDefer() {
panic.go#L434: if head.CompareAndSwap(d1.link, d1) {
panic.go#L451: tail := d0.link
panic.go#L464: for d1 := d; ; d1 = d1.link {
panic.go#L467: if d1.link == nil {
panic.go#L468: d1.link = tail
panic.go#L472: d0.link = d
panic.go#L507: *(*uintptr)(unsafe.Pointer(&d.link)) = uintptr(unsafe.Pointer(gp._defer))
panic.go#L529: sched.deferpool = d.link
panic.go#L530: d.link = nil
panic.go#L559: gp._defer = d.link
panic.go#L560: d.link = nil
panic.go#L580: last.link = d
panic.go#L585: last.link = sched.deferpool
runtime2.go#L999: link *_defer // next defer on G; can point to either heap or stack!
stack.go#L776: for d := gp._defer; d != nil; d = d.link {
stack.go#L779: adjustpointer(adjinfo, unsafe.Pointer(&d.link))
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |